home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997 September / Macworld (1997-09).dmg / Shareware World / Comms & Internet / SB114 / Plugins / poll < prev    next >
Text File  |  1997-05-19  |  1KB  |  54 lines

  1. 'Poll Plugin 1.0.1
  2. '© John Bafford, 1996-1997
  3. '
  4. *COMMAND vote -1 1
  5. *GLOBAL int yes 0
  6. *GLOBAL int no 0
  7. *GLOBAL int total 0
  8. *ENDCONF
  9.  
  10. @ENTRY vote
  11.   @IF "YES" = "$ARG1" yes
  12.   @IF "NO" = "$ARG1" no
  13.   @IF "RESULTS" = "$ARG1" results
  14.   @IF "RESET" = "$ARG1" reset
  15.   @IF "HELP" = '$ARG1" help
  16.   NOTICE $NICK Illegal Vote command: "$ARG1"
  17. @END
  18.  
  19. @LABEL help
  20.   NOTICE $NICK Valid vote commands: YES, NO, RESULTS, RESET, HELP
  21. @END
  22.  
  23. @LABEL yes
  24.   @ADDONE total
  25.   @ADDONE yes
  26.   NOTICE $NICK Your vote (Yes) has been added. Thank you for participating.
  27. @END
  28.  
  29. @LABEL no
  30.   @ADDONE total
  31.   @ADDONE no
  32.   NOTICE $NICK Your vote (No) has been added. Thank you for participating.
  33. @END
  34.  
  35. @LABEL results
  36.   @IF ACCESS >= 900 results.good
  37.     NOTICE $NICK You don't have access to view the results.
  38. @END
  39.  
  40. @LABEL results.good
  41.   NOTICE $NICK Voting results: Yes: $GLOBAL:yes., No: $GLOBAL:no., Total: $GLOBAL:total..
  42. @END
  43.  
  44. @LABEL reset
  45.   @IF ACCESS >= 900 reset.good
  46.   NOTICE $NICK You don't have access to view the results.
  47. @END
  48.  
  49. @LABEL reset.good
  50.   @SET yes 0
  51.   @SET no 0
  52.   @SET total 0
  53.   NOTICE $NICK Votes have been reset.
  54. @END